home *** CD-ROM | disk | FTP | other *** search
/ The Frank Lloyd Wright Companion / The Frank Lloyd Wright Companion.iso / pc / setup / title.mst < prev    next >
Text File  |  1995-08-20  |  17KB  |  503 lines

  1. '**************************************************************************
  2. '*
  3. '* TITLE.MST - Viewer Runtime Setup Script
  4. '*
  5. '* CUSTOMIZING TITLE.MST
  6. '*
  7. '* For a simple Setup routine, you just need to assign values to the 
  8. '* series of variables following the heading "Setup Variables". This
  9. '* script also provides for the following more-advanced options, which
  10. '* are supported by subroutines located later in this script:
  11. '*
  12. '* Option                                         See Subroutine
  13. '* ------------------------------------------     ---------------------
  14. '* Install more than one .MVB file                ModifyViewerIni
  15. '* Install Help title                             ModifyViewerIni
  16. '* Install custom DLLs                            ModifyViewerIni
  17. '* Install multiple Program Manager items         ModifyProgramManager
  18. '* Display a custom icon with the ProgMan item    ModifyProgramManager
  19. '* Install custom fonts                           RegisterCustomFonts
  20. '* Install Video for Windows runtime files        RegisterDrivers
  21. '*
  22. '* Each customization note starts with the heading CUSTOMIZATION.
  23. '*
  24. '**************************************************************************
  25.     
  26.     '' Global variables
  27.  
  28.     GLOBAL TitleShortName$
  29.     GLOBAL TitleLongName$
  30.     GLOBAL MVBFileName$
  31.     GLOBAL PromptForPath%
  32.     GLOBAL DefaultPath$
  33.     GLOBAL ProgManGroup$
  34.     GLOBAL ProgManItem$
  35.  
  36.     '' ****************************************************************
  37.     '' ** Setup Variables
  38.     '' ****************************************************************
  39.  
  40.     '' Set the following string to a short form of the title name
  41.     '' (for example, "Gallery")
  42.     
  43.     TitleShortName$ = "FLLW Companion"
  44.     
  45.     '' Set the following string to a long form of the title name
  46.     '' (for example, "Viewer 2.0 Gallery")
  47.     
  48.     TitleLongName$ = "Frank Lloyd Wright Companion"
  49.         
  50.     '' Set the following variable to the name of the MVB file, without 
  51.     '' the filename extension (for example, "GALLERY")
  52.         
  53.     MVBFileName$ = "FLW"
  54.         
  55.     '' The following variable determines whether Setup prompts the user
  56.     '' to specify a directory in which to install title files. (Files
  57.     '' to be installed on the hard disk must be listed in the TITLE.INF 
  58.     '' file under the [Installed Title Files] section.) Specify one of
  59.     '' the following values:
  60.     ''
  61.     '' 0    Install title files in the Windows directory (default setting).
  62.     ''      This is an appropriate setting if you have a limited number
  63.     ''      of files to copy (for example, a single custom icon or DLL).
  64.     ''
  65.     '' 1    Display a dialog box to prompt the user for a directory in 
  66.     ''      which to install files
  67.         
  68.     PromptForPath% = 0
  69.         
  70.     '' If you have specified 1 in PromptForPath%, set the following 
  71.     '' variable to the default path that will be displayed in the dialog
  72.     '' box (for example, "C:\GALLERY").
  73.         
  74.     DefaultPath$ = "C:\"
  75.     
  76.     '' Set the following variable to the name of the program manager 
  77.     '' group you would like to create (for example, "Viewer 2.0 Gallery")
  78.         
  79.     ProgManGroup$ = "FLLW Companion"
  80.     
  81.     '' Set the following variable to the caption of the program manager 
  82.     '' item for your title (for example, "Gallery")
  83.         
  84.     ProgManItem$ = "Frank Lloyd Wright Companion"
  85.     
  86.     '***********************************************************************
  87.     '** Mainline
  88.     '***********************************************************************
  89.  
  90.     GLOBAL CUIDLL$
  91.  
  92.     '' Include files
  93.     '$INCLUDE 'setupapi.inc'
  94.     
  95.     '' Custom UI dll
  96.     CUIDLL$ = "mscuistf.dll"
  97.     
  98.     '' Dialog ID's
  99.     CONST DESTPATH      = 1000
  100.     CONST APPHELP       = 2000
  101.     CONST TOOBIG        = 3000
  102.     CONST BADPATH       = 4000
  103.     CONST SUCCESS       = 5000
  104.     
  105.     '' Bitmap ID
  106.     CONST LOGO = 1
  107.     
  108.     '' Functions and subroutines
  109.     DECLARE FUNCTION AddFont LIB "mscuistf.dll" (szFont$, szName$) AS INTEGER
  110.     DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  111.     DECLARE FUNCTION GetTitleDir (szDefault$) AS STRING
  112.     DECLARE FUNCTION CopyFiles(szTitleDir$) AS INTEGER
  113.     DECLARE SUB RegisterFont(fontfile$, fontname$)
  114.     DECLARE SUB ModifyViewerIni
  115.     DECLARE SUB RegisterCustomFonts
  116.     DECLARE SUB ModifyProgramManager
  117.     DECLARE SUB ShowSuccess
  118.     DECLARE SUB RegisterDrivers
  119.     
  120.     '' The following statement turns size checking off. Set it to scmOnFatal 
  121.     '' to enable size checking, where Setup will compare the disk file size 
  122.     '' with the INF file size and report an error if they are not the same.
  123.     
  124.     i% = SetSizeCheckMode(scmOff)
  125.     
  126.     '' Set the title and banner bitmap. You must rebuild MSCUISTF.DLL to 
  127.     '' alter the banner bitmap.
  128.     
  129.     ''SetTitle "Viewer Title Setup"
  130.     SetTitle "Frank Lloyd Wright Companion Setup"
  131.     SetBitmap CUIDLL$, LOGO 
  132.     
  133.     '' Read in the INF file.
  134.     
  135.     ReadInfFile GetSymbolValue("STF_CWDDIR") + "TITLE.INF"
  136.     
  137.     '' Decide where to put title files
  138.     IF PromptForPath% = 1 THEN
  139.         szTitleDir$ = GetTitleDir(DefaultPath$)
  140.         IF szTitleDir$ = "" THEN
  141.             GOTO QUIT
  142.         ENDIF
  143.     ELSE
  144.         szTitleDir$ = GetWindowsDir()
  145.     ENDIF   
  146.     
  147.     '' Copy files
  148.     IF CopyFiles(szTitleDir$) = 0 THEN
  149.         GOTO QUIT
  150.     ENDIF
  151.  
  152.     '' Create the MVIEWER2.EXE MVB association 
  153.     CreateIniKeyValue "WIN.INI", "Extensions", "MVB", "mviewer2.exe", cmoNone
  154.  
  155.     '' Register in VIEWER.INI
  156.     ModifyViewerIni
  157.  
  158.     '' Register custom fonts
  159.     RegisterCustomFonts
  160.  
  161.     '' Register drivers
  162.     RegisterDrivers
  163.     
  164.     '' Modify Program Manager
  165.     ModifyProgramManager    
  166.     
  167.     '' install video for windows
  168.     ''RUN "vfw11.win\disk1\setup.exe"
  169.  
  170.     '' Now start the title
  171.  
  172.     ''RUN "mviewer2.exe " + MVBFileName$ + ".MVB", NOWAIT
  173.  
  174.     '' Success dialog
  175.     ShowSuccess
  176.  
  177. QUIT:
  178.     
  179.     END
  180.     
  181.  
  182. '*************************************************************************
  183. '** Purpose:
  184. '**     Prompts the user for a path for the title files
  185. '** Arguments:
  186. '**     szDefault$ - default path
  187. '** Returns:
  188. '**     New valid path name, or "" if the user quit.
  189. '*************************************************************************
  190.  
  191. FUNCTION GetTitleDir (szDefault$) STATIC AS STRING
  192.  
  193.     SetSymbolValue "String", TitleShortName$
  194.     SetSymbolValue "EditTextIn", szDefault$
  195.     SetSymbolValue "EditFocus", "ALL"
  196.  
  197.     GETPATH:
  198.  
  199.     sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, "FHelpDlgProc")
  200.  
  201.     IF sz$ = "CONTINUE" THEN
  202.         szTitleDir$ = GetSymbolValue("EditTextOut")
  203.         IF IsDirWritable(szTitleDir$) = 0 THEN
  204.  
  205.             BADPATH:
  206.  
  207.             sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfoDlgProc", 0, "")
  208.             IF sz$ = "REACTIVATE" THEN
  209.                 GOTO BADPATH
  210.             END IF
  211.             UIPop 1
  212.             GOTO GETPATH
  213.         END IF
  214.         UIPop 1
  215.         CreateDir szTitleDir$, cmoNone
  216.  
  217.     ELSEIF sz$ = "REACTIVATE" THEN
  218.         GOTO GETPATH
  219.  
  220.     ELSE
  221.         szTitleDir$ = ""
  222.  
  223.     END IF
  224.  
  225.     GetTitleDir = szTitleDir$
  226.  
  227. END FUNCTION
  228.  
  229.  
  230. '*************************************************************************
  231. '** Purpose:
  232. '**     Copies the files in the INF file
  233. '** Arguments:
  234. '**     szTitleDir$ - destination directory for the title files
  235. '** Returns
  236. '**     1 if files were copied, 0 otherwise
  237. '*************************************************************************
  238.  
  239. FUNCTION CopyFiles(szTitleDir$) STATIC AS INTEGER
  240.  
  241.     '' Add all system files to the copy list
  242.     AddSectionFilesToCopyList "System Files", GetSymbolValue("STF_SRCDIR"), GetWindowsSysDir()
  243.     
  244.     '' Add all of the title files to the copy list
  245.     AddSectionFilesToCopyList "Installed Title Files", GetSymbolValue("STF_SRCDIR"), szTitleDir$
  246.     
  247.     '' Check size
  248.     szExtras$ = "Extra"
  249.     szCosts$ = "Costs"
  250.     szNeededs$ = "Neededs"
  251.     FOR i% = 1 TO 26 STEP 1
  252.         AddListItem szExtras$, "0"
  253.     NEXT i%
  254.     
  255.     '' We assume that VIEWER.INI will take another 4K
  256.     ReplaceListItem szExtras$, ASC(MID$(UCASE$(GetWindowsDir()), 1, 1)) - ASC("A") + 1, STR$(4096)
  257.     
  258.     '' Get amount of space required
  259.     StillNeed& = GetCopyListCost(szExtras$, szCosts$, szNeededs$)
  260.     
  261.     '' Put up a message if there is not enough space
  262.     FOR i% = 1 TO 26 STEP 1
  263.         IF VAL(GetListItem(szNeededs$, i%)) > 0 THEN
  264.     
  265.             SetSymbolValue "String1", LTRIM$(STR$(VAL(GetListItem(szCosts$, i%)) / 1024))
  266.             SetSymbolValue "String2", CHR$(i% - 1 + ASC("A"))
  267.     
  268.             TOOBIG:
  269.     
  270.             sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfoDlgProc", 0, "")
  271.             IF sz$ = "REACTIVATE" THEN
  272.                 GOTO TOOBIG
  273.             END IF
  274.             UIPop 1
  275.             CopyFiles = 0
  276.             GOTO DONTCOPY
  277.         END IF
  278.     NEXT i%
  279.     
  280.     '' Copy the files
  281.     CopyFilesInCopyList
  282.     
  283.     CopyFiles = 1
  284.  
  285. DONTCOPY:
  286.  
  287. END FUNCTION
  288.  
  289.  
  290. '*************************************************************************
  291. '** Purpose:
  292. '**     Puts up a success dialog
  293. '*************************************************************************
  294.  
  295. SUB ShowSuccess STATIC
  296.  
  297.     SUCCESS:
  298.     
  299.     SetSymbolValue "String1", TitleShortName$
  300.     sz$ = UIStartDlg(CUIDLL$, SUCCESS, "FInfoDlgProc", 0, "")
  301.     IF sz$ = "REACTIVATE" THEN
  302.         GOTO SUCCESS
  303.     END IF
  304.     UIPop 1
  305.     
  306. END SUB
  307.  
  308.  
  309. '*************************************************************************
  310. '** Purpose:
  311. '**     Appends a file name to the end of a directory path,
  312. '**     inserting a backslash character as needed.
  313. '** Arguments:
  314. '**     szDir$  - full directory path (with optional ending "\")
  315. '**     szFile$ - filename to append to directory
  316. '** Returns:
  317. '**     Resulting fully qualified path name.
  318. '*************************************************************************
  319.  
  320. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  321.     IF szDir$ = "" THEN
  322.         MakePath = szFile$
  323.     ELSEIF szFile$ = "" THEN
  324.         MakePath = szDir$
  325.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  326.         MakePath = szDir$ + szFile$
  327.     ELSE
  328.         MakePath = szDir$ + "\" + szFile$
  329.     END IF
  330. END FUNCTION
  331.  
  332.  
  333. '*************************************************************************
  334. '** Purpose:
  335. '**     Registers a font.
  336. '** Arguments:
  337. '**     fontfile$ - font filename
  338. '**     fontname$ - font name.
  339. '*************************************************************************
  340.  
  341. SUB RegisterFont(fontfile$, fontname$) STATIC
  342.  
  343.     '' A simple error catching wrapper around AddFont, which is a 'C' routine in MSCUISTF.DLL
  344.  
  345.     IF AddFont(fontfile$, fontname$) = -1 THEN
  346.         j% = DoMsgBox("Could not install " + fontfile$ + " font.", "Viewer Font Installation", 0)
  347.     ENDIF
  348.  
  349. END SUB
  350.  
  351.  
  352. '*************************************************************************
  353. '** Purpose:
  354. '**     Registers title in VIEWER.INI
  355. '*************************************************************************
  356.  
  357. SUB ModifyViewerIni STATIC
  358.  
  359.     '' Get the VIEWER.INI file
  360.     
  361.     szIni$ = MakePath(GetWindowsDir(), "VIEWER.INI")
  362.  
  363.     '' First register the title file, setting the Name and Path entries. 
  364.     '' We assume that the MVB file is the same directory as SETUP.EXE.
  365.     ''
  366.     '' CUSTOMIZATION: If you're installing multiple MVB files, copy the
  367.     '' following two statements for each additional file, substituting
  368.     '' the appropriate long name and MVB filename for the TitleLongName$
  369.     '' and MVBFileName$ variables.
  370.     
  371.     CreateIniKeyValue szIni$, MVBFileName$, "Name", TitleLongName$, cmoOverwrite
  372.     CreateIniKeyValue szIni$, MVBFileName$, "Path", GetSymbolValue("STF_SRCDIR"), cmoOverwrite
  373.     
  374.     '' Now we have to register the MVB file in the [FILES] section, so 
  375.     '' Viewer can find files that are not on the path and display a 
  376.     '' special message when a file is not found.
  377.  
  378.     CreateIniKeyValue szIni$, "FILES", MVBFileName$ + ".MVB", GetSymbolValue("STF_SRCDIR") + "," + "Please insert the " + TitleLongName$ + " disk.", cmoOverwrite
  379.  
  380.     '' CUSTOMIZATION: If you're installing a Help title or any custom DLLs,
  381.     '' you should copy the preceding statement for each extra title or DLL.
  382.     ''
  383.     '' Example for installing an extra title:
  384.     ''
  385.     ''    CreateIniKeyValue szIni$, "FILES", "GALHELP.MVB", GetSymbolValue("STF_SRCDIR") + "," + "Please insert the Viewer 2.0 Gallery disk.", cmoOverwrite
  386.     ''
  387.     '' Example for installing a custom DLL:
  388.     ''
  389.     ''    CreateIniKeyValue szIni$, "FILES", "GALLERY.DLL", GetSymbolValue("STF_SRCDIR") + "," + "A required file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  390.  
  391.      ''CreateIniKeyValue szIni$, "FILES", "FLLWC.DLL", GetSymbolValue("STF_SRCDIR") + "," + "FLLWC.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  392.  
  393.      ''CreateIniKeyValue szIni$, "FILES", "DECO.DLL", GetSymbolValue("STF_SRCDIR") + "," + "DECO.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  394.  
  395.      ''CreateIniKeyValue szIni$, "FILES", "ACCUSOFT.DLL", GetSymbolValue("STF_SRCDIR") + "," + "ACCUSOFT.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  396.  
  397.     CreateIniKeyValue szIni$, "FILES", "FLLWC.DLL", GetWindowsDir() + "SYSTEM\," + "FLLWC.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  398.  
  399.      CreateIniKeyValue szIni$, "FILES", "DECO.DLL", GetWindowsDir() + "SYSTEM\," + "DECO.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  400.  
  401.      CreateIniKeyValue szIni$, "FILES", "ACCUSOFT.DLL", GetWindowsDir() + "SYSTEM\," + "ACCUSOFT.DLL file is missing. Please reinstall the Viewer Gallery.", cmoOverwrite
  402.  
  403. END SUB
  404.  
  405.  
  406. '*************************************************************************
  407. '** Purpose:
  408. '**     Creates program manager entries for the title
  409. '*************************************************************************
  410.  
  411. SUB ModifyProgramManager STATIC
  412.  
  413.     '' Create the program manager group
  414.  
  415.     CreateProgmanGroup ProgmanGroup$, "", cmoNone
  416.     ShowProgmanGroup ProgmanGroup$, 1, cmoNone
  417.  
  418.     szVwr$ = MakePath(GetWindowsDir(), "SYSTEM\MVIEWER2.EXE ")
  419.     szDrive$ = MID$(GetSymbolValue("STF_SRCDIR"),1,1)
  420.     szIcon$ = MakePath(GetWindowsDir(), "SYSTEM\FLWC.ICO")
  421.  
  422.     '' Create an entry for the title
  423.      
  424.     CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + szDrive$ + ":\" + MVBFileName$ + ".MVB", szIcon$ + ",,,," + szDrive$ + ":\", cmoOverwrite
  425.     ''CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + szDrive$ + ":\" + MVBFileName$ + ".MVB", MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".ICO") + ",,,," + szDrive$ + ":\", cmoOverwrite
  426.     ''CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".MVB"), MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".ICO"), cmoOverwrite
  427.     
  428.     '' CUSTOMIZATION: 
  429.     ''
  430.     '' To create additional Program Manager items, copy the preceding 
  431.     '' statement for each additional item, substituting the appropriate
  432.     '' name for the MVBFileName$ variable.
  433.     ''
  434.     '' To display a custom icon with the Program Manager item, specify
  435.     '' the icon filename with the fourth parameter (this parameter is 
  436.     '' currently an empty string, ""). The following example specifies 
  437.     '' an icon with the same filename as the .MVB file:
  438.     ''
  439.     ''       CreateProgmanItem ProgmanGroup$, ProgmanItem$, "mviewer2.exe " + MakePath(GetSymbolValue("STF_DESTDIR"), MVBFileName$ + ".MVB"), MakePath(GetSymbolValue("STF_SRCDIR"), MVBFileName$ + ".ICO"), cmoOverwrite
  440.  
  441. END SUB
  442.  
  443.  
  444. '*************************************************************************
  445. '** Purpose:
  446. '**     Registers custom fonts with Windows.
  447. '*************************************************************************
  448.  
  449. SUB RegisterCustomFonts STATIC
  450.  
  451.     '' CUSTOMIZATION: If you install custom fonts, then add statements
  452.     '' in this routine to register the fonts with the current Windows 
  453.     '' session and to add them to the WIN.INI [Fonts] section. 
  454.     ''
  455.     '' Note that TrueType fonts can only be installed in Windows 3.1.
  456.     '' RegisterFont automatically creates the required .FOT file for 
  457.     '' TrueType fonts.
  458.     ''    
  459.     '' The following example registers a font residing in MISTRAL.TTF
  460.     '' and installs the font with the name Mistral (True Type):
  461.     '' 
  462.     ''     RegisterFont "mistral.ttf", "Mistral (TrueType)"
  463.     ''
  464.  
  465. END SUB
  466.  
  467.  
  468. '*************************************************************************
  469. '** Purpose:
  470. '**     Registers Windows drivers
  471. '*************************************************************************
  472.  
  473. SUB RegisterDrivers STATIC
  474.  
  475. '' CUSTOMIZATION: Video for Windows is not a standard component of
  476. '' Windows 3.1. If your title uses video, proceed as follows.
  477. ''
  478. '' 1) Add the following files to the [System Files] section of the INF file:
  479. ''
  480. ''    dispdib.dll
  481. ''    msvideo.dll
  482. ''    indeo.drv
  483. ''    mciavi.drv
  484. ''    msvidc.drv
  485. ''
  486. '' 2) Add the above files to your release directory. US versions can be 
  487. ''    found in the \SYSTEM subdirectory of your Viewer disc. French and
  488. ''    German versions were not available at ship time. Please contact 
  489. ''    Microsoft or check the Multimedia Viewer section on the Microsoft
  490. ''    Compuserve Forum for further details.
  491. ''
  492. '' 3) Uncomment the following lines:
  493. ''
  494. CreateIniKeyValue "WIN.INI", "mci extensions", "AVI", "AVIVIDEO", cmoNone
  495. CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "mci", "AVIVIDEO", "MCIAVI.DRV", cmoNone
  496. CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "drivers", "vidc.msvc", "msvidc.drv", cmoNone
  497. CreateIniKeyValue MakePath(GetWindowsDir(), "SYSTEM.INI"), "drivers", "vidc.rt21", "indeo.drv", cmoNone
  498.  
  499. END SUB
  500.  
  501.  
  502.  
  503.